home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 112 / maccd 112.iso / Utilities / Mac OS X / uControl1.3.7.dmg / uControl1.3.7.pkg / Contents / Resources / preinstall < prev    next >
Encoding:
Text File  |  2003-11-04  |  470 b   |  25 lines

  1. #!/bin/sh
  2. # preinstall (copy of preupgrade)
  3. ucontrol=/Library/StartupItems/uControl/uControl
  4. $ucontrol stop
  5.  
  6. oldpref=/Library/PreferencePanes/uControlPanel.prefPane
  7. newpref=/Library/PreferencePanes/uControl.prefPane
  8.  
  9. #cat <<EOF | osascript
  10. #  tell application "System Preferences"
  11. #     quit
  12. #  end tell
  13. #EOF
  14.  
  15. for pref in $oldpref $newpref; do
  16.     if [ -e "$pref" ]; then
  17.         rm -rf "$pref"
  18.     fi
  19. done
  20.  
  21. if [ -e "$ucontrol" ]; then
  22.     $ucontrol uninstall
  23. fi
  24. exit 0
  25.